home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d11 / color.arc / CLRCOLOR.DOC < prev    next >
Text File  |  1986-11-05  |  2KB  |  44 lines

  1.  
  2. CLR & COLOR
  3. -----------
  4.  
  5. Purpose:     COLOR sets the screen color attribute without overwriting
  6.              the screen.  CLR (for "CLEAR") clears the screen, sets the
  7.              active page to 0, and sets the screen color attribute.
  8.  
  9. Format:      CLR [ss[,bb]]
  10.  
  11.                 or
  12.  
  13.              COLOR [ss[,bb]]
  14.  
  15.              where ss is the number (in decimal) of the screen attribute,
  16.              and bb is the number of the border color.
  17.  
  18. Remarks:     If no attribute is given, both CLR and COLOR default to #7,
  19.              white on black.
  20.  
  21.              If attribute but no border color is given, the border will
  22.              match the background of the screen.
  23.  
  24.              0 (black on black) is not accepted as a screen attribute, but
  25.              you can call for a 0 (black) border.
  26.  
  27.              Thus: COLOR 2 turns the screen (with what's on it) to green
  28.              on black.  CLR 96 clears the screen and turns it black on
  29.              brown with a brown border.  COLOR 96,2 produces a black on
  30.              brown with a green border.  CLR clears the screen and turns
  31.              it white on black.
  32.  
  33.              NOTES:
  34.  
  35.                 1. COLOR works only on the first page (0) of the CGA.
  36.                    Dunno what it would do on an EGA, but it does nothing
  37.                    on a mono Text monitor.
  38.  
  39.                 2. CLR works on both CGA and the mono Text Monitor.
  40.  
  41.                 3. If you need help finding attribute numbers or chosing
  42.                    your colors, try COLRBITS
  43.  
  44.                                        ---Programmer: R. N. Wisan 9/7/86